/* Experience Section Styling */
#experience {
    padding: 80px 20px;
    color: #00ffff;
    text-align: center;
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0, 255, 225, 0.5);
}

.experience-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.experience-item {
    background-color: rgba(16, 20, 21, 0.8); /* Semi-transparent dark background */
    backdrop-filter: sepia(20);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 225, 0.3);
    width: 80%; /* Control the width */
    max-width: 800px; /* Maximum width for the item */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px); /* Slight hover effect */
    box-shadow: 0 0 25px rgba(0, 255, 225, 0.5); /* Glowing effect on hover */
}

.job-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00ffff;
}

.job-date {
    font-size: .6rem;
    color: #00ffcc;
    font-style: italic;
}
